home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_09_08
/
9n08126a
< prev
next >
Wrap
Text File
|
1991-06-16
|
443b
|
26 lines
/* Current method of flag declaration */
struct flags
{
unsigned int alarm_on:l;
unsigned int door_ajar:l;
}flags;
/* Desired method of flag declaration */
unsigned int alarm_on:l;
unsigned int door_ajar:l;
main()
{
/* Current Method of Flag Initialization */
flags.alarm_on = l;
flags.door_ajar = O;
/* Desired Method of Flag Initialization */
alarm_on = l;
door_ajar = O;
}